home *** CD-ROM | disk | FTP | other *** search
- /*
- ** patch.library
- **
- ** Copyright © 1993-1997 by Stefan Fuchs
- ** Freely distributable.
- */
-
- #ifndef _PATCH_INCLUDES_H
- #include "patch_includes.h"
- #endif
-
-
- /****** patch.library/PatchFreeVec ***************************************
- *
- * NAME
- * PatchFreeVec -- free patch.library structures (V3)
- *
- * SYNOPSIS
- * PatchFreeVec(memoryBlock)
- * A1
- *
- * void PatchFreeVec(void *);
- *
- * FUNCTION
- * Free memory and structures used by patch.library. The memory will
- * be returned to the system pool from which it came.
- *
- * NOTE
- *
- * INPUTS
- * memoryBlock - pointer to the memory block to free, or NULL.
- *
- * SEE ALSO
- * GetPatch(), exec.library/FreeVec
- *
- ******************************************************************************
- *
- */
-
- void LIBFUNC PatchFreeVec( REGA1 APTR memptr GNUC_REGA1)
- {
- AFreemem( memptr);
- }